home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software USA 4 #11
/
Software USA Volume 4.11.iso
/
mac
/
Educational
/
mac06
/
usr
/
include
/
pwd.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1998-04-14
|
317 b
|
23 lines
|
[
TEXT/SPM
]
/* mac06©1998 by HNS/DSITRI hns@computer.org
** pwd.h
*/
#pragma once
#include "sys/types.h"
#define __PASSWD "/etc/passwd"
struct passwd {
char *pw_name;
uid_t pw_uid;
gid_t pw_gid;
char *pw_dir;
char *pw_shell;
};
struct passwd *getpwnam(const char *name);
struct passwd *getpwuid(uid_t uid);
/* EOF */